home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d1 / bnchutil.arc / DCACHE.DOC < prev    next >
Text File  |  1991-04-30  |  2KB  |  41 lines

  1.  
  2. DCACHE                                                     Douglas Boling
  3.  
  4. Purpose:  A memory-resident hard disk cache that speeds disk Input/Output by
  5.           holding recently-accessed data in RAM, where it can be more quickly
  6.           retrieved than by being read again from the hard disk.
  7.  
  8. Format:   DCACHE [/OFF | /ON] [/U] [/Mx] [/E] [/Hx]
  9.  
  10. Remarks:  When entered without any of its optional parameters, DCACHE installs
  11.           and activates itself as a 64KB conventional (DOS) memory cache for
  12.           the primary hard disk drive in the system.  The size of the cache, in
  13.           kilobytes, can be varied by inclusion of the /Mx parameter, where x
  14.           may be any one of the following values:  16, 32, 64, 128, 256, 512,
  15.           1024, 2048, 4096, or 8192.  Expanded memory that conforms to the
  16.           Lotus/Intel/Microsoft Expanded Memory specification can be used in
  17.           place of regular DOS memory by loading DCACHE with the optional /E
  18.           parameter.
  19.  
  20.           The /Hx parameter specifies which of two physical hard disks are to
  21.           be cached:  /H0 is the default primary drive and /H1 is the secondary
  22.           drive.  Note that a hard disk that is logically partitioned into
  23.           several smaller drives is considered as a single drive by DCACHE.
  24.           DCACHE cannot be set to cache floppy disk drives, but this need can
  25.           be met by entering the BUFFERS=3 command as a line in the system's
  26.           CONFIG.SYS.
  27.  
  28.           After DCACHE has been installed, caching may be disabled or
  29.           re-enabled by issuing the DCACHE /OFF or DCACHE /ON commands.  DCACHE
  30.           /U uninstalls the program from memory if no subsequent
  31.           terminate-stay-resident program has been loaded and if BIOS interrupt
  32.           13h has not been changed since DCACHE was installed.
  33.  
  34.           DCACHE may be executed either from the DOS prompt or as a line in an
  35.           AUTOEXEC.BAT file.  The DCACHE syntax may be reviewed by entering
  36.           DCACHE ? before or after loading the program.  In the latter case,
  37.           only the /OFF, /ON, and /U options will be displayed.  In addition to
  38.           the memory reserved for the
  39.           cache itself, DCACHE occupies approximately 1,200 bytes of RAM.
  40.  
  41.